home *** CD-ROM | disk | FTP | other *** search
/ VRML 2.0 Sourcebook (2nd Edition) / VRML 2.0 Sourcebook CD [md5 fed90f4f9c39d5a60d477058775c7e21].iso / book / unix / ch20 / spheres.wrl < prev    next >
Text File  |  1996-09-23  |  962b  |  30 lines

  1. #VRML V2.0 utf8
  2. # The VRML 2.0 Sourcebook
  3. # Copyright [1997] By
  4. # Andrea L. Ames, David R. Nadeau, and John L. Moreland
  5. Transform {
  6.     translation -7.5 -7.5 0.0
  7.     children [
  8.         DEF BallRow Group {
  9.             children [
  10.                 DEF Ball Shape {
  11.                     appearance Appearance {
  12.                         material Material { }
  13.                     }
  14.                     geometry Sphere { }
  15.                 },
  16.                 Transform { translation  3.0 0.0 0.0 children USE Ball },
  17.                 Transform { translation  6.0 0.0 0.0 children USE Ball },
  18.                 Transform { translation  9.0 0.0 0.0 children USE Ball },
  19.                 Transform { translation 12.0 0.0 0.0 children USE Ball },
  20.                 Transform { translation 15.0 0.0 0.0 children USE Ball }
  21.             ]
  22.         },
  23.         Transform { translation 0.0  3.0 0.0 children USE BallRow },
  24.         Transform { translation 0.0  6.0 0.0 children USE BallRow },
  25.         Transform { translation 0.0  9.0 0.0 children USE BallRow },
  26.         Transform { translation 0.0 12.0 0.0 children USE BallRow },
  27.         Transform { translation 0.0 15.0 0.0 children USE BallRow }
  28.     ]
  29. }
  30.